home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / smfdoor / frmfavor.frm < prev    next >
Text File  |  1999-09-11  |  2KB  |  58 lines

  1. VERSION 5.00
  2. Begin VB.Form FrmFavorites 
  3.    BackColor       =   &H00000000&
  4.    Caption         =   "Favorites"
  5.    ClientHeight    =   3225
  6.    ClientLeft      =   60
  7.    ClientTop       =   405
  8.    ClientWidth     =   4680
  9.    Icon            =   "FrmFavorites.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    ScaleHeight     =   3225
  13.    ScaleWidth      =   4680
  14.    StartUpPosition =   3  'Windows Default
  15.    Begin VB.CommandButton cmdCancel 
  16.       Caption         =   "Cancel"
  17.       Height          =   375
  18.       Left            =   2400
  19.       TabIndex        =   2
  20.       Top             =   2640
  21.       Width           =   1815
  22.    End
  23.    Begin VB.CommandButton cmdGotoFavorite 
  24.       Caption         =   "Goto Favorite"
  25.       Height          =   375
  26.       Left            =   360
  27.       TabIndex        =   1
  28.       Top             =   2640
  29.       Width           =   1695
  30.    End
  31.    Begin VB.ListBox List1 
  32.       Height          =   2400
  33.       Left            =   120
  34.       TabIndex        =   0
  35.       Top             =   120
  36.       Width           =   4335
  37.    End
  38. End
  39. Attribute VB_Name = "FrmFavorites"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Private Sub cmdCancel_Click()
  45. Me.Hide
  46. End Sub
  47.  
  48. Private Sub cmdGotoFavorite_Click()
  49.     rownumber = List1.ListIndex
  50.         frmDoorToTheNet.txtAddress.Text = List1.List(rownumber)
  51.     frmDoorToTheNet.WebBrowser1.Navigate frmDoorToTheNet.txtAddress.Text
  52.         FrmFavorites.Hide
  53. End Sub
  54.  
  55. Private Sub List1_Click()
  56.     cmdGotoFavorite.Enabled = True
  57. End Sub
  58.